home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 1998 November / IRIX 6.5.2 Base Documentation November 1998.img / usr / share / catman / p_man / cat3 / complib / zpotri.z / zpotri
Text File  |  1998-10-30  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. ZZZZPPPPOOOOTTTTRRRRIIII((((3333FFFF))))                                                          ZZZZPPPPOOOOTTTTRRRRIIII((((3333FFFF))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      ZPOTRI - compute the inverse of a complex Hermitian positive definite
  10.      matrix A using the Cholesky factorization A = U**H*U or A = L*L**H
  11.      computed by ZPOTRF
  12.  
  13. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  14.      SUBROUTINE ZPOTRI( UPLO, N, A, LDA, INFO )
  15.  
  16.          CHARACTER      UPLO
  17.  
  18.          INTEGER        INFO, LDA, N
  19.  
  20.          COMPLEX*16     A( LDA, * )
  21.  
  22. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  23.      ZPOTRI computes the inverse of a complex Hermitian positive definite
  24.      matrix A using the Cholesky factorization A = U**H*U or A = L*L**H
  25.      computed by ZPOTRF.
  26.  
  27.  
  28. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  29.      UPLO    (input) CHARACTER*1
  30.              = 'U':  Upper triangle of A is stored;
  31.              = 'L':  Lower triangle of A is stored.
  32.  
  33.      N       (input) INTEGER
  34.              The order of the matrix A.  N >= 0.
  35.  
  36.      A       (input/output) COMPLEX*16 array, dimension (LDA,N)
  37.              On entry, the triangular factor U or L from the Cholesky
  38.              factorization A = U**H*U or A = L*L**H, as computed by ZPOTRF.
  39.              On exit, the upper or lower triangle of the (Hermitian) inverse
  40.              of A, overwriting the input factor U or L.
  41.  
  42.      LDA     (input) INTEGER
  43.              The leading dimension of the array A.  LDA >= max(1,N).
  44.  
  45.      INFO    (output) INTEGER
  46.              = 0:  successful exit
  47.              < 0:  if INFO = -i, the i-th argument had an illegal value
  48.              > 0:  if INFO = i, the (i,i) element of the factor U or L is
  49.              zero, and the inverse could not be computed.
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.